home *** CD-ROM | disk | FTP | other *** search
- v edx,edi
-
- ; pass up maxX (not needed)
-
- mov eax,[esi].SHAPEHEADER.xmax ; read maxX from header
-
- ; linecount (ebx) = maxY + 1 - minY; if linecount <= 0, exit
-
- mov eax,[esi].SHAPEHEADER.ymax ; read maxY from header
- inc eax
- sub eax,ebx
- mov ebx,eax
- jle Exit
-
- add esi,SIZEOF SHAPEHEADER
-
- lineLoop:
-
- ; get token, adjust count, and branch to appropriate packet handler
-
- LODSB_
- shr